home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 4 / The 640 Meg Shareware Studio CD-ROM Volume IV (Data Express)(1994).ISO / clang / 114_01.zip / ED.H < prev    next >
Text File  |  1993-06-01  |  896b  |  30 lines

  1. /* Screen editor:  non-user defined globals
  2.  *
  3.  * Source:  ed.h
  4.  * Version: May 15, 1980.
  5.  */
  6.  
  7.  
  8. /* Define global constants */
  9.  
  10. /* Define constants describing a text line */
  11.  
  12. #define MAXLEN    133    /* max chars per line */
  13. #define MAXLEN1    134    /* MAXLEN + 1 */
  14.  
  15. /* Define operating system constants */
  16.  
  17. #define SYSFNMAX 15    /* CP/M file name length + 1 */
  18.  
  19. /* Define misc. constants */
  20.  
  21. #define EOS    0    /* code sometimes assumes \0 */
  22. #define ERR    -1    /* must be same as ERROR */
  23. #define YES    1    /* must be nonzero */
  24. #define NO    0
  25. #define CR    13    /* carriage return */
  26. #define LF    10    /* line feed */
  27. #define TAB    9    /* tab character */
  28. #define HUGE    32000    /* practical infinity */
  29.  
  30.